home *** CD-ROM | disk | FTP | other *** search
/ Aminet 23 / Aminet 23 (1998)(GTI - Schatztruhe)[!][Feb 1998].iso / Aminet / dev / c / cref.lha / Cref.Doc < prev    next >
Text File  |  1997-12-20  |  1KB  |  42 lines

  1.   cref - C cross referencer
  2.  
  3. This program reads C source from its standard input or one or more files
  4. and prints the source code with line numbers followed by an alphabetic
  5. list of  word references by line number.
  6.  
  7. To run:
  8.     cref [-ppointer] [-q] [-lnnn] [-wnnn] [-hheading] [-tnnn] [-?] [file ...]
  9.  
  10. Options:
  11.  
  12.     p    - supply a list of filenames, one per line, in a pointer file
  13.            This is the same as putting them on the command line, just you
  14.            can make your list of files up easier.
  15.  
  16.     q    - don't print normal input file listing.
  17.  
  18.     lnnn - set page length to n instead of the default 66.
  19.             Minimum allowed is 4, maximum is 9999.
  20.  
  21.     wnnn - set page width to n instead of the default 132.
  22.             Minimum allowed is 27, maximum is 132.
  23.  
  24.     hccc - set page heading to 'ccc' rather than file names.
  25.  
  26.     tnnn - set tab spaces to n instead if the default 8.
  27.             Minimum is 1, maximum is 132.
  28.      ?    - display this list.
  29.  
  30. This program was written by Mike Edmonds for use on Unix. It was ported
  31. to the Amiga by Joel Swank. The original UNIX source is included for
  32. the sake of completeness.
  33.  
  34. Version 3.00 Modified by Tony Preston:
  35.  
  36.   a) Recompiled with SAS/C 6.58.
  37.   b) Fixed several warnings from the compiler
  38.   c) added an option to supply a list of filenames to make processing
  39.      of large numbers of files easier.
  40.   d) Fixed the output of the filenames and line numbers in the table of contents
  41.  
  42.